| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- import { listMonths } from "@/lib/storage";
- import { getSession } from "@/lib/auth/session";
- import { canAccessBranch } from "@/lib/auth/permissions";
- import {
- withErrorHandling,
- json,
- badRequest,
- unauthorized,
- forbidden,
- } from "@/lib/api/errors";
- import { mapStorageReadError } from "@/lib/api/storageErrors";
- /**
- * GET /api/branches/[branch]/[year]/months
- *
- * Happy-path response must remain unchanged:
- * { "branch": "NL01", "year": "2024", "months": ["10", ...] }
- */
- export const GET = withErrorHandling(
- async function GET(request, ctx) {
- const session = await getSession();
- if (!session) {
- throw unauthorized("AUTH_UNAUTHENTICATED", "Unauthorized");
- }
- const { branch, year } = await ctx.params;
- // Validate required route params early.
- const missing = [];
- if (!branch) missing.push("branch");
- if (!year) missing.push("year");
- if (missing.length > 0) {
- throw badRequest(
- "VALIDATION_MISSING_PARAM",
- "Missing required route parameter(s)",
- { params: missing }
- );
- }
- if (!canAccessBranch(session, branch)) {
- throw forbidden("AUTH_FORBIDDEN_BRANCH", "Forbidden");
- }
- try {
- const months = await listMonths(branch, year);
- return json({ branch, year, months }, 200);
- } catch (err) {
- throw await mapStorageReadError(err, { details: { branch, year } });
- }
- },
- { logPrefix: "[api/branches/[branch]/[year]/months]" }
- );
|